lookup-tariff-codes

(0 reviews)

Lookup Tariff Codes For EAD PreCom Portal User

The purpose of this flow is to provide the HS Tariff code information for the EAD PreCom user portal to comply with the ICS2 Tariff Code requirements.

The PRECOM app calls for HS code only for declarations to certain countries. If the destination country is not IE or null or empty then API will return HS6 tariff codes data otherwise API will return 10-digit tariff data. As of now, Ireland(IE) requires 10 digit tariff code.

If you require a HS6 Quick Check Option please use the following URLs.

If you would like to see examples of how to use these endpoints please refer to the specifications on the left side panel.

UAT URLs:

https://api.uat.nzpost.co.nz/lookup-tariff-codes/v1/fetch-codes/ead/{records}?destination_country=%destination_country%

Where,
 - {records} is the URI parameter and the value for this is either all or the first - Here all means, the URL returns all the Product tariff details, and first means this call   returns only the first Product tariff details
 - destination_country is the Query parameter  and the  value is a  two-digit country code EX: IE  or Null or empty

PROD URLs:

https://api.nzpost.co.nz/lookup-tariff-codes/v1/fetch-codes/ead/{records}?destination_country=%destination_country%
Where,
 - {records} is the URI parameter and the value for this is either all or the first - Here all means, the URL returns all the Product tariff details, and first means this call   returns only the first Product tariff details
 - destination_country is the Query parameter  and the  value is a  two-digit country code EX: IE  or Null or empty

Process overview:

  1. The user sends products-description as input with URI parameter{records} and query parameter destination_country in the URL
  2. API will check for destination_country,

    • When destination_country is an EAD-supported country (for example Ireland (IE)) then API will return a response with 10-digit import codes.
      • If URI parameter {records} is first, API will return first Product Hurricane Tariff code details.
      • If URI parameter{records} is all, API will return all Products Hurricane Tariff code details (Please note that actual Hurricane URLs support only 10 products so APIreturns all means 10 products in the response).
    • When destination_country is not an EAD-supported country or NULL or Empty then API will return the products with HS6 tariff code (6 digits) details.
      • If URI parameter{records}is first, API will return first Product Hurricane Tariff code details.
      • If URI parameter {records} is all, API will return all Products Hurricane Tariff code details.

Reviews